gpsbabel -i gpx -f 12345.gpx -o an1,nogc -F 12345.an1
+ The "symbol" option allows you to specify which symbol to use for
+ points that don't have a symbol already. It defaults to "Red Flag"
+ but it accepts any symbol name you can put in a DeLorme export file.
+ To find the name of a specific symbol in Street Atlas, let the mouse
+ pointer hover over it for a few seconds and the name will be displayed.
+
GPSBabel has limited experimental support for other types of layers
besides the default "drawing" layer with the use of two options:
static char *output_type = NULL;
static char *road_changes = NULL;
static char *nogc = NULL;
+static char *opt_symbol = NULL;
static short output_type_num = 0;
static short last_read_type = 0;
"", ARGTYPE_HIDDEN | ARGTYPE_STRING },
{"nogc", &nogc, "Do not add geocache data to description",
NULL, ARGTYPE_BOOL },
+ {"symbol", &opt_symbol, "Symbol to use for point data",
+ "Red Flag", ARGTYPE_STRING },
{0, 0, 0, 0 }
};
rec->unk2 = 3;
rec->unk3 = 18561;
rec->fontname = xstrdup( "Arial" );
- FindIconByName( "Red Flag", &rec->guid );
+ FindIconByName( opt_symbol, &rec->guid );
rec->fontsize = 10;
}
rec->name = xstrdup( wpt->description );